home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / LIBRARY / ORDER.LI < prev    next >
Text File  |  1993-10-06  |  117b  |  5 lines

  1. #    order(poly, x) finds the order of poly
  2. #    e.g. order(x^2-4, x) gives 2
  3.  
  4. order(y_, x_) := length(coefall(y,x))-1
  5.